home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / util2 / erase.lha / Erase / src.lha / smakefile < prev   
Makefile  |  1995-08-07  |  499b  |  27 lines

  1. #/***************************************************************************
  2. # * smakefile
  3. # *
  4. # * Makefile for Erase
  5. # *
  6. # * August 1995, ©Lee Kindness. All rights reserved.
  7. # *
  8. # */
  9.  
  10. OBJS= Erase.o
  11.  
  12. Erase: $(OBJS) 
  13.    sc NOCHECKABORT link to Erase with <<
  14. $(OBJS)
  15. <
  16.  
  17. Erase.o: Erase.c scoptions INCLUDE:Erase.gst
  18.     sc Erase.c GST=INCLUDE:Erase.gst NOLINK
  19.  
  20. INCLUDE:Erase.gst: gst.c scoptions smakefile
  21.     sc gst.c MAKEGST=INCLUDE:Erase.gst IGNORE=105 NOOPTIMIZE
  22.     delete gst.o
  23.  
  24. dist:
  25.     execute makedist
  26.  
  27.